home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / cbibcode.arc / TEXTCOLR.C < prev    next >
Encoding:
C/C++ Source or Header  |  1991-08-05  |  230 b   |  14 lines

  1. /* p896.c --- bible */
  2. #include <conio.h>
  3. main()
  4. {
  5.     int i, numcolors = 16;
  6.     textbackground(BLACK);
  7.     for(i = 0; i < numcolors; i++)
  8.     {
  9.         textcolor(i);
  10.         gotoxy(1, i + 1);
  11.         cprintf("Text color = %d", i);
  12.     }
  13. getch();
  14. }